home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / WD.IN_ / wd.inf
Encoding:
INI File  |  2003-03-24  |  1.3 KB  |  54 lines

  1. ;----------------------------------------------------------------------------
  2. ; Watchdog Timer Device
  3. ;----------------------------------------------------------------------------
  4. ;
  5.  
  6. [Version]
  7. Signature="$WINDOWS NT$"
  8. Class=System
  9. ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
  10. Provider=%MICROSOFT%
  11. LayoutFile=layout.inf
  12. DriverVer=10/01/2002,5.2.3790.0
  13.  
  14. [DestinationDirs]
  15. WdDeviceCopyFiles=10,system32\drivers
  16.  
  17. [Manufacturer]
  18. %MICROSOFT%=Microsoft
  19.  
  20. [Microsoft]
  21. %WdDeviceDesc%=WdDevice,*PNP0C18
  22.  
  23. [WdDevice]
  24. CopyFiles=WdDeviceCopyFiles
  25.  
  26. [WdDeviceCopyFiles]
  27. wd.sys
  28.  
  29. [WdDevice.Services]
  30. AddService=Wd,%SPSVCINST_ASSOCSERVICE%,WdDeviceService
  31.  
  32. [WdDeviceService]
  33. ServiceType=%SERVICE_KERNEL_DRIVER%
  34. StartType=%SERVICE_BOOT_START%
  35. ErrorControl=%SERVICE_ERROR_NORMAL%
  36. DisplayName=%WdServiceDisplayName%
  37. ServiceBinary=%12%\wd.sys
  38.  
  39. [Strings]
  40.  
  41. SPSVCINST_ASSOCSERVICE                   = 0x00000002
  42. REG_MULTI_SZ                             = 0x00010000
  43.  
  44. SERVICE_BOOT_START                       = 0
  45. SERVICE_ERROR_NORMAL                     = 1
  46. SERVICE_KERNEL_DRIVER                    = 1
  47. SERVICE_SYSTEM_START                     = 1
  48.  
  49. MICROSOFT                                = "Microsoft"
  50.  
  51. WdDeviceDesc                             = "Microsoft Watchdog Timer"
  52. WdServiceDisplayName                     = "Microsoft Watchdog Timer Driver"
  53.  
  54.